{gridName}_field

specifies the text in the columns

field_namestringthe column's id
eventobjectthe event object

Available only in PRO Edition

Example

scheduler.templates.grid_field = function(field_name, event){
    return event[field_name];
};

Applicable views:Grid View
Details

The template requires the grid_view plugin to be activated.

Note, the template isn't applied to columns with id='date', id='start_date' or id='end_date'. Such columns use the {gridName}_full_date and {gridName}_single_date templates, respectively.

See also
Back to top